func crypto/tls.unexpectedMessageError

21 uses

	crypto/tls (current package)
		common.go#L1521: func unexpectedMessageError(wanted, got any) error {
		conn.go#L1250: 		return unexpectedMessageError(helloReq, msg)
		handshake_client.go#L231: 		return unexpectedMessageError(serverHello, msg)
		handshake_client.go#L543: 		return unexpectedMessageError(certMsg, msg)
		handshake_client.go#L629: 		return unexpectedMessageError(shd, msg)
		handshake_client.go#L860: 		return unexpectedMessageError(serverFinished, msg)
		handshake_client.go#L896: 		return unexpectedMessageError(sessionTicketMsg, msg)
		handshake_client_tls13.go#L303: 		return unexpectedMessageError(serverHello, msg)
		handshake_client_tls13.go#L437: 		return unexpectedMessageError(encryptedExtensions, msg)
		handshake_client_tls13.go#L521: 		return unexpectedMessageError(certMsg, msg)
		handshake_client_tls13.go#L546: 		return unexpectedMessageError(certVerify, msg)
		handshake_client_tls13.go#L590: 		return unexpectedMessageError(finished, msg)
		handshake_server.go#L142: 		return nil, unexpectedMessageError(clientHello, msg)
		handshake_server.go#L633: 			return unexpectedMessageError(certMsg, msg)
		handshake_server.go#L661: 		return unexpectedMessageError(ckx, msg)
		handshake_server.go#L699: 			return unexpectedMessageError(certVerify, msg)
		handshake_server.go#L779: 		return unexpectedMessageError(clientFinished, msg)
		handshake_server_tls13.go#L510: 		return unexpectedMessageError(clientHello, msg)
		handshake_server_tls13.go#L905: 		return unexpectedMessageError(certMsg, msg)
		handshake_server_tls13.go#L931: 			return unexpectedMessageError(certVerify, msg)
		handshake_server_tls13.go#L980: 		return unexpectedMessageError(finished, msg)